home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / mike40c.arc / GOTOXY.C < prev    next >
Text File  |  1986-10-23  |  262b  |  16 lines

  1. #include <dos.h>
  2.  
  3. gotoxy(x, y)   /* position cursor at x,y  0,0 being upper left */
  4. int x, y;
  5. {
  6.     union REGS REG;
  7.  
  8.     REG.h.ah = 02;
  9.     REG.h.bh = 0; /* Get current page */
  10.     REG.h.dh = x;
  11.     REG.h.dl = y;
  12.     int86(0x10, ®, ®);
  13. }
  14.  
  15.  
  16.